/* Top container styling*/ /*EDDI Search section styling */
.action-container {
	margin-bottom: 1em;
}

.content-wrap .narrow {
	max-width: initial;
}

.py-clv {
	padding-top: 2rem;
}

#SamplePermitChartDialog {
	cursor: pointer
}

.btn-link {
	color: #d63d4b;
}

button:focus, *:focus {
	outline: 3px solid #0099a8
}

.table th {
	font-weight: 700;
	font-size: 1.1rem;
}

ul.added-pins-dropdown {
    columns: 3;
}


@media (max-width: 768px) {
	ul.added-pins-dropdown {columns: 2}
}
@media (max-width: 479px) {
	ul.added-pins-dropdown {columns: 1}
}


/* Result container */
/* Detailed permit result */ /* joe's additions */

.hidden {
	display: none;
}

#not-found {
	font-size: 14px;
	color: tomato;
	display: inline-block;
}

#fees {
	margin-left: 20px;
	color: tomato;
	font-weight: 700;
}

#fees-amount-due {
	font-size: 14px !important;
}

#check-status-button {
	margin-left: 20px;
	font-size: 14px !important;
}

/* inspection table */

table.inspection-table {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	width: 100%;
}

.inspection-table-header span {
	cursor: pointer;
}

#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

#overlay-dialog {
	background-color: rgba(255, 255, 255, 1);
	z-index: 3;
	cursor: pointer;
}

.overlay-button {
	padding: 8px 24px;
	border: 1px solid #d63d4b;
	background-color: #d63d4b;
	-webkit-transition: all 264ms ease;
	transition: all 264ms ease;
	font-family: Lato, sans-serif;
	color: white;
	font-size: 13px;
	text-align: center;
	text-decoration: none;
	transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-ms-transition: all 0.4 ease;
}


input.added-pins-dropdown.type-checkbox {
	width: initial;
}


div#added-pins-dropdown {
	padding: 10px;
}


/* eddi styles */
div.ui-datepicker {
	 background-color: white; 
	 padding: 5px; 
	 filter: drop-shadow(3px 3px 5px grey); 
	 font-size: 12px; 
}

/* days */

td.ui-datepicker-unselectable,
td[data-handler="selectDay"],
span[title="Monday"],
span[title="Tuesday"],
span[title="Wednesday"],
span[title="Thursday"],
span[title="Friday"],
span[title="Saturday"],
span[title="Sunday"] {
	font-size: 14px;
	padding: 5px; 
}

/* month title */

.ui-datepicker-title {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}

/* next  */

a.ui-datepicker-next.ui-corner-all {
	float: right; 
	 font-size: 12px; 
	font-weight: bold;
}

/* prev */

span.ui-icon.ui-icon-circle-triangle-w {
	float: left;
	font-size: 12px;
	font-weight: bold;
}

/* fix for popup on checkbox click */

div#ui-datepicker-div {
	display: none;
}

/* animate input validation */

@-o-keyframes fadeIt {
	 0%   { background-color: #FFFFFF; }
        10%  { background-color: #d63d4b; }
        100% { background-color: #FFFFFF; } 
	0% {
		outline: 3px solid #fff;
	}
	10% {
		outline: 3px solid #d63d4b;
	}
	100% {
		outline: 3px solid #fff;
	}
}

@keyframes fadeIt {
	 0%   { background-color: #FFFFFF; }
        10%  { background-color: #d63d4b; }
        100% { background-color: #FFFFFF; } 
	0% {
		outline: 3px solid #fff;
	}
	10% {
		outline: 3px solid #d63d4b;
	}
	100% {
		outline: 3px solid #fff;
	}
}

.invalid-input {
	background-image: none !important;
	-o-animation: fadeIt 4s ease-in-out;
	animation: fadeIt 4s ease-in-out;
}

.page-numbers {
	cursor: pointer;
	font-family: 'ITC Avant'
}
.page-numbers.active {
	font-weight: bold;
	color: #d63d4b;
}

.page-navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
	min-width: 50% !important;
}

.permitInfoBold {
	font-weight: bold !important;
	font-family: Teko, sans-serif !important;
}

.modal-content > h3 {
	color: #222;
	line-height: 2.6rem;
}


.spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	margin-left: -20px;
	text-align: center;
	-webkit-animation: sk-rotate 2s infinite linear;
	animation: sk-rotate 2s infinite linear;
}

.spinner-background {
	z-index: 100000
}
.spinner-background,
.spinner-background-sync {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #222222;
	z-index: 99999;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #e81f76;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.load-text {
    animation: none;
    width: auto;
    height: auto;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: 3rem;
}

@keyframes sk-rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes sk-bounce {
	0%,
	100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}

.inspection-button-no-pad {
	display: inline-block;
	border: 2px solid #d63d4b;
	background-color: #d63d4b;
	background-position: 92% 50%;
	background-size: 15px;
	background-repeat: no-repeat;
	-webkit-transition: padding 200ms ease;
	transition: padding 200ms ease;
	font-family: "Itcavantgardestd", sans-serif;
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.8px;
	text-decoration: none;
}

.inspection-button-no-pad:hover {
	color: #d63d4b !important;
	-webkit-transition: padding 200ms ease;
	transition: padding 200ms ease;
}

.label-text {
	font-size: 14px;
	margin-left: 10px;
}

.inspection-list-label {
	display: block;
	padding: 8px;
	margin: 0px 8px 0px 0px;
}

.form-control[readonly] {
	 background-color: initial;
}

#ui-datepicker-div {
	padding: 15px;
}

button#reset-inspections-dropdown-checkboxes {
	margin-right: 10px;
}

#leftNavButtons,
#rightNavButtons {
	display: flex;
}


.toggle-item-cancel-inspection-button {
	margin-bottom: 5px;
}

.modal {
	text-align: center;
	display: none;
	position: fixed;
	padding: 10px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	justify-content: center;
	align-items: center;
}

/* Modal Content */

.modal-content {
	max-width: 500px;
}

/* The Close Button */

.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	background-color: transparent;
	border:none
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* permit sample table styles */

.divTable {
	display: table;
	width: 100%;
}

.divTableRow {
	display: table-row;
}

.divTableHeading {
	background-color: #eee;
	display: table-header-group;
}

.divTableCell,
.divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}

.divTableHeading {
	background-color: #eee;
	display: table-header-group;
	font-weight: bold;
}

.divTableFoot {
	background-color: #eee;
	display: table-footer-group;
	font-weight: bold;
}

.divTableBody {
	display: table-row-group;
}

/* The Modal (background) */

.modalPermitSample {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	font-size: 12px;
}

/* Modal Content */

.modalPermitSample-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 441px;
}

/* The Close Button */

label.inspection-list-label + button {
	margin-bottom: 5px;
}

.inspection-list-label > input,
.inspection-list-label > textarea {
	width: 100%;
}
/* Modal Content */



label.inspection-list-label + button {
	margin-bottom: 5px;
}

.inspection-list-label > input,
.inspection-list-label > textarea {
	width: 100%;
}
.video-inspection-message {
	display: none;
}
.video-inspection-message h3 {
	font-family: "ITC Avant", Helvetica, Arial, sans-serif;
	font-size: 24px;
}

.video-inspection-message ul {
	list-style: initial;
}

.video-inspection-message ul li {
	margin-left: 20px;
}

.video-inspection-message a {
	color: #d63d4b;
}

@media (max-width: 568px) {
	.messenger-btn.button,
	.psmw_GkTs {
		display: none !important;
	}
	div#dnn_ContentPane6,
	footer.footer-global {
		max-height: 0;
		overflow: hidden;
		padding: 0;
	}
}